home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / psfontmgr.prerm < prev    next >
Text File  |  2008-07-22  |  326b  |  22 lines

  1. #! /bin/sh
  2.  
  3. set -e
  4.  
  5. FILE='/etc/defoma/hints/defoma-ps.hints'
  6. CONF='/etc/defoma/config/psfontmgr.conf'
  7.  
  8. if [ "$1" = remove ]; then
  9.   if [ -f $FILE ]; then
  10.     /usr/bin/defoma-font -t purge-all $FILE
  11.   fi
  12.   
  13.   /usr/bin/defoma-app -t purge psfontmgr
  14. fi
  15.  
  16. if [ "$1" = upgrade ]; then
  17.   /usr/bin/defoma-app -t clean psfontmgr
  18. fi
  19.  
  20.  
  21.  
  22.